ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

API Checker

by ksgy ALL

Checks any API status and shows in Sublime Text Editor status bar

Details

  • 2014.05.29.11.23.45
  • github.​com
  • github.​com
  • 11 years ago
  • 3 hours ago
  • 11 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 467
  • Linux 346
Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23
Windows 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

API Checker plugin for Sublime Text

A plugin to check if an API or a site is up and running. You can make HTTP calls similar as in SublimeHttpRequester

Inspiration came from sublimetext-LondonUnderground :)

Example configuration: (api-checker.sublime-settings)

{
    "debug": true,
    "timeout": 30,
    "up_label": "✓",
    "dn_label": "✕",
    "detailed_error": true,
    "urls": [
        {
            "title": "google",
            "request_type": "GET",
            "request_body": [
            ],
            "url": "http://google.com",
        },
        {
            "title": "non-existent",
            "request_type": "POST",
            "request_body": [
                "Access-Control-Request-Headers: accept",
                "Access-Control-Allow-Origin: *",
                "Content-type: application/x-www-form-urlencoded",

                "POST_BODY:",
                "api_key=test_key&getuser=john"
            ],
            "url": "http://some.non-existent.url",
        }
    ]
}

Avaliable options

  • debug

    Show/hide debug messages. Prints out all request and response messages to console.

  • timeout

    How often to make request to URLs (in seconds)

  • up_label

    Label to show if the API/site is up and running

  • dn_label

    Label to show if the API/site is down

  • detailed_error

    Show/hide HTTP error code if site is down (eg.: My API✕ (500))

  • urls

    Dictionary of APIs/sites to check

    • title

      Title to show in status bar

    • request_type

      HTTP request type: POST/GET/PUT/DELETE

    • request_body

      Request headers, POST_BODY.

      See SublimeHttpRequester for more information

    • url

      URL to request

License

The MIT License (MIT)

Copyright © 2014 ksgy